home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 May / Software of the Month Club 1996 May.iso / mac / ISO9660 / OS2 / MESA / EXAMPLES / SRC / PAGE / PAGE.MAK < prev    next >
Encoding:
Text File  |  1994-11-01  |  937 b   |  45 lines  |  [TEXT/hscd]

  1. # Created by IBM WorkFrame/2 MakeMake at 01:49:27 on 11/01/94
  2. #
  3. # This makefile should be run in the following directory:
  4. #   c:\development\m2\page
  5. #
  6. # The actions included in this makefile are:
  7. #   BIND::Resource Bind
  8. #   COMPILE::CLC C++
  9. #   COMPILE::Resource Compile
  10. #   LINK::Link
  11.  
  12. .all: \
  13.   .\PAGE.EXE
  14.  
  15. .SUFFIXES:
  16.  
  17. .SUFFIXES: .cpp .RC
  18.  
  19. .RC.res:
  20.       @echo WF::COMPILE::Resource Compile
  21.       rc.exe -r %s %|fF.RES
  22.  
  23. .cpp.obj:
  24.       @echo WF::COMPILE::CLC C++
  25.       icc.exe /J- /Q /Wall /Fi /Si /O /W2 /Gm /G5 /Gx /Ft- /C %s
  26.  
  27. .\PAGE.EXE: \
  28.     .\page.obj \
  29.     .\Page.res \
  30.     {$(LIB)}page.def \
  31.     page.mak
  32.       @echo WF::LINK::Link
  33.       link386.exe @<<
  34.          /PM:PM /PACKD: /E /NOI /NOE /W /NOLOGO /M:FULL +
  35.         .\page.obj
  36.         PAGE.EXE
  37.         PAGE.MAP
  38.         
  39.         page.def;
  40. <<
  41.       @echo WF::BIND::Resource Bind
  42.       rc.exe .\Page.res PAGE.EXE
  43.  
  44.  
  45. !include page.Dep